home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ ICQ 2.xpl < prev    next >
Text File  |  2000-08-07  |  1KB  |  66 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Instant Messaging\ICQ"
  5. "NAME"="General Settings"
  6. "VERSION"="1.12"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Allow automatic program updates"
  9. "TEXT 2"="Show first time welcome screen"
  10. "DESCRIPTION 1"="Some options for ICQ."
  11. "DESCRIPTION 2"="ICQ may be obtained at http://www.icq.com/."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=" "
  16. "COMMENT 2"="Thanks to CptSiskoX for the settings and the idea."
  17.  
  18.  
  19.  sP="HKCU\Software\Mirabilis\ICQ\DefaultPrefs\"
  20. sV1="Auto Update" 'STR yes/no
  21. sV2="NoFirstScreen" 'STR yes/no
  22. Sub Plugin_Initialize 
  23.  if RegPathExists(sP) then
  24.     i=RegReadValue(sP & sV1)
  25.     if i="Yes" then SetUiElement 1,true
  26.  
  27.     i=RegReadValue(sP & sV2)
  28.     if i<>"Yes" then SetUiElement 2,true 
  29.  else
  30.     Call Disable()
  31.  end if
  32. End Sub
  33.  
  34.  
  35. Sub Plugin_CheckData(ElementIndex)
  36. End Sub
  37.  
  38.  
  39.  
  40. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  41.  b=GetUIElement(1)
  42.  if b=true then
  43.     i="Yes"
  44.  else
  45.     i="No"
  46.  end if
  47.  Call RegWriteValue(sP & sV1,i,1)
  48.  
  49.  b=GetUIElement(2)
  50.  if b=true then
  51.     i="No"
  52.  else
  53.     i="Yes"
  54.  end if
  55.  Call RegWriteValue(sP & sV2,i,1)
  56.  
  57.  
  58. End Sub
  59.  
  60.  
  61. Sub Plugin_Terminate 
  62. End Sub
  63.  
  64.  
  65.  
  66.